feat(planning): plans as first-class, replayable artifacts (#623) - #639
Open
cagdasyurekli wants to merge 1 commit into
Open
feat(planning): plans as first-class, replayable artifacts (#623)#639cagdasyurekli wants to merge 1 commit into
cagdasyurekli wants to merge 1 commit into
Conversation
…#623) - Persist approved plan proposals durably on SessionRecord and scratch plan files (plan.md and plans/<plan_id>.md) - Store plan_id across audit events and tag execution steps executed under an approved plan - Add REST endpoints GET /v1/sessions/{session_id}/plan, POST /v1/sessions/{session_id}/plan/replay, GET /v1/plans, and POST /v1/plans/replay - Add 'Re-run this plan' action button and menu item in the GUI ArtifactViewer - Add comprehensive automated test coverage for plan persistence, audit tagging, replay, and REST API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #623
Summary
This PR implements first-class, replayable plan artifacts as requested in #623:
GET /v1/sessions/{session_id}/plan: Retrieve the session's active plan artifact.POST /v1/sessions/{session_id}/plan/replay: Replay the approved plan in a fresh session with seeded prompt, scratch plan mirroring, and audit linkage (stage="plan_replayed").GET /v1/plans: List all saved plan artifacts across sessions.POST /v1/plans/replay: Replay any saved plan artifact by plan ID.ArtifactViewerinRightRail.tsxwhen viewingplan.mdor files inplans/.en.json) and Chinese (zh.json) strings.tests/test_plan_replay.pycovering plan persistence inConversationStore, audit store filtering byplan_id, engine audit attribution upon approval, manager replay functionality, and REST endpoints. All tests pass.